projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0f851be
)
Remove a self-assignment
author
Matthias Clasen
<mclasen@redhat.com>
Sun, 9 Aug 2015 21:38:40 +0000
(23:38 +0200)
committer
Matthias Clasen
<mclasen@redhat.com>
Sun, 9 Aug 2015 21:38:40 +0000
(23:38 +0200)
clang doesn't like those.
gtk/gtkbbox.c
patch
|
blob
|
history
diff --git
a/gtk/gtkbbox.c
b/gtk/gtkbbox.c
index 68ec4845c812e22f8b70ab64dbfa8d37f6cdcdf8..000ba13dbe86702199ac46ee8c209fece9d5c3ea 100644
(file)
--- a/
gtk/gtkbbox.c
+++ b/
gtk/gtkbbox.c
@@
-884,7
+884,7
@@
gtk_button_box_size_allocate (GtkWidget *widget,
switch (gtk_box_get_baseline_position (GTK_BOX (widget)))
{
case GTK_BASELINE_POSITION_TOP:
- baseline = baseline;
+ /* keep baseline as is */
break;
case GTK_BASELINE_POSITION_CENTER:
baseline = baseline + (allocation->height - baseline_height) / 2;